home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / utilitys / 435 / fselect / fselect.ins < prev    next >
Encoding:
Text File  |  1990-10-11  |  4.0 KB  |  111 lines

  1. ############################################################################
  2. ##                                                                        ##
  3. ##          Installation Data for the File Selector (FSELECT.PRG)         ##
  4. ##                                                                        ##
  5. ##                     (C) 27/2/89 by Martin Patzel / West Germany        ##
  6. ##                                                                        ##
  7. ############################################################################
  8.  
  9. # See READ_ME.TXT for more information.
  10. # Lines or comments preceeded by a hash sign are inactive (these
  11. # lines have a hash sign at the beginning of the line).
  12. # FSELECT.INS translated by Andreas Ramos, with thanks to Martin Patzel.
  13.  
  14. header    = 'q', control, control       # Head line 
  15. header    = help                        # ...or also... 
  16. exit      = undo                        # UNDO key
  17.  
  18. # Installation of a key to a specific drive.
  19. # C drive is always active, even if there is no A or B drive icon.
  20. # If the lines for "fixdrive" are inactive (deleted or inactive), then
  21. # the key is not specified to the drive, but rather, to the numerical
  22. # order of the drive.
  23. # The "c" key therefore will always activate the third drive button,
  24. # regardless of its icon identity. (Perhaps your third drive is not "C",
  25. # but "D" or "E" or whatever.
  26. fixdrives
  27.  
  28.  
  29. # Drive buttons
  30. drive0    = 'a', control, control+shift
  31. drive1    = 'b', control, control+shift
  32. drive2    = 'c', control, control+shift
  33. drive3    = 'd', control, control+shift
  34. drive4    = 'e', control, control+shift
  35. drive5    = 'f', control, control+shift
  36. drive6    = 'g', control, control+shift
  37. drive7    = 'h', control, control+shift
  38. drive8    = 'i', control, control+shift
  39. drive9    = 'j', control, control+shift
  40. drive10   = 'k', control, control+shift
  41. drive11   = 'l', control, control+shift
  42. drive12   = 'm', control, control+shift
  43. drive13   = 'n', control, control+shift
  44. drive14   = 'o', control, control+shift
  45. drive15   = 'p', control, control+shift
  46.  
  47. # Window elements
  48. wi0       = '1', ctrl, ctrl+shift       # Item line in window
  49. wi1       = '2', ctrl, ctrl+shift
  50. wi2       = '3', ctrl, ctrl+shift
  51. wi3       = '4', ctrl, ctrl+shift
  52. wi4       = '5', ctrl, ctrl+shift
  53. wi5       = '6', ctrl, ctrl+shift
  54. wi6       = '7', ctrl, ctrl+shift
  55. wi7       = '8', ctrl, ctrl+shift
  56. wi8       = '9', ctrl, ctrl+shift
  57. wi9       = '0', ctrl, ctrl+shift
  58. wi10      = '=', ctrl, ctrl+shift
  59. wiclose   = 'y', c, c                   # Close button in window
  60. wiclose   = home
  61. wimove    = 'v', c, c                   # Field next to close button
  62. wiuparr   = curup, c, c+s               # arrow up
  63. widnarr   = curdown, c, c+s             # arrow down 
  64. wiltarr   = curleft, c, c               # arrow left 
  65. wirtarr   = curright, c, c              # arrow right
  66.  
  67. # Extensions, numbered in the following way:
  68. #  1  2
  69. #  3  4
  70. #  ....
  71. # 10 11
  72. ext0      = z(, c, c+s
  73. ext1      = z), c, c+s
  74. ext2      = z7, c, c+s
  75. ext3      = z8, c, c+s
  76. ext4      = z4, c, c+s
  77. ext5      = z5, c, c+s
  78. ext6      = z/, c, c+s
  79. ext7      = z*, c, c+s
  80. ext8      = z9, c, c+s
  81. ext9      = z-, c, c+s
  82. ext10     = z6, c, c+s
  83. ext11     = z+, c, c+s
  84.  
  85. # Sorting of data
  86. sortname  = 'w', c, c+s
  87. sortext   = 'x', c, c+s
  88. sortsize  = 'z', c, c+s
  89. sortdate  = 't', c, c+s
  90.  
  91.  
  92. ##### Option box (second window) #####
  93.  
  94. # Redraw-Modi
  95. opfest    = z1, c, c          # Fixed-Modus
  96. opauto    = z2, c, c          # Auto-Modus
  97. opredraw  = z3, c, c          # Redraw-Modus
  98.  
  99. opklpf    = 'q', c, c         # Path inclusion
  100. opklex    = 'r', c, c         # Extension inclusion
  101.  
  102. opspfsel  = ',', c, c         # Fselect uses the saved path
  103. opsptos   = '.', c, c         # TOS uses the saved path
  104. opsptosfs = '-', c, c         # Fselect uses the path from TOS
  105.  
  106. opremove  = delete, c, c      # Delete file or folder
  107. opmkdir   = insert, c, c      # Create folder 
  108. opsave    = 's', c, c         # Save parameters
  109. opexit    = esc, c, c         # Exit the file selector
  110.  
  111.